array-keys
![release](http://img.shields.io/github/release/silverbucket/array-keys.svg?style=flat)
Very simple library to manage array elements using a key instead of array index position. When dealing with very large sets of data all organized in an object reference, if the object structure is changing a lot you can end up with memory leaks and slow performance. In these cases it's better to keep an array of objects instead of and object of objects. The cost of iterating through the array is cheaper than the lack of garbage collection which can occur in large, changing, object hashes.
environments
Should run in both node.js and browser environments.
basic usage example
var ak = new ArrayKeys({
identifier: 'key'
});
ak.getRecord('myInvalidKey'});
ak.addRecord({
key: 'myKey1',
value: 'hello world!'
});
ak.getRecord('myKey1');
ak.addRecord({
key: 'myKey2',
value: 'hello space!'
});
ak.forEachRecord(function (record) {
}).finally(function (count) {
});
ak.getIdentifiers();
events
ArrayKeys
also optionally supports emitting events. This functionality must be explicity enabled during object instantiation.
supported events
example
var ak = new ArrayKeys({
emitEvents: true
});
ak.events.on('add', function (record) {
console.log(record.id);
});
ak.addRecord({
id: 'foobar',
here: [ 'is', 'some' ],
data: true
});
API
constructor
var ak = new ArrayKeys({
identifier: 'id',
emitEvents: true
});
addRecord
Add a new record.
ak.addRecord({
id: 'helloworld123',
foo: 'bar'
});
ak.addRecord({
id: 'pizza777',
blah: [ 1, 2, 3 ]
});
getRecord
Get a record by it's identifier.
var record = ak.getRecord('helloworld123');
getIdentifiers
Get an array of the values of the record identifiers.
var ids = ak.getIdentifiers();
exists
Indicates whether a record exists by returning true
or false
.
if (ak.exists('blahblahblah')) {
console.log('yes!');
} else {
console.log('no');
}
getIndex
Returns the number of the position of the record, specified by identifier.
var position = ak.getIndex('pizza777');
forEachRecord
Calls a callback handler function for each record in the list, asyncronously.
ak.forEachRecord(function (record, index) {
}).finally(function (count) {
})
mapRecords
Calls a callback transform function for each record in the list.
Your original list is not mutated. Returns an array.
ak.mapRecords(function(record, index) {
return record.id + '-' + index;
});
removeRecord
Removes the record specified by identifier.
ak.removeRecord('helloworld123');
removeAll
Removes all records.
ak.removeAll();
events
update
ak.events.on('update', function (record){
...
});
add
ak.events.on('add', function (record){
...
});
remove
ak.events.on('remove', function (record){
...
});
credits
Project developed and maintained by Nick Jennings